func html/template.isHex

6 uses

	html/template (current package)
		css.go#L78: 		if isHex(s[1]) {
		css.go#L82: 			for j < len(s) && j < 7 && isHex(s[j]) {
		css.go#L104: func isHex(c byte) bool {
		css.go#L178: 		if repl != `\\` && (written == len(s) || isHex(s[written]) || isCSSSpace(s[written])) {
		url.go#L119: 			if norm && i+2 < len(s) && isHex(s[i+1]) && isHex(s[i+2]) {